home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 March - Disc 1 / Macworld (1999-03) (Disk 1).dmg / Shareware World / Utilities / Text Processing / Alpha / Tcl / Modes / fortranMode.tcl < prev    next >
Encoding:
Text File  |  1998-12-08  |  20.2 KB  |  667 lines  |  [TEXT/ALFA]

  1. #=============================================================================
  2. # Fortran mode definition and support procs
  3. #
  4. # Features:
  5. # 1.  Keyword colorization (slightly customizable)
  6. # 2.  Fortran-sensitive shift right/left preserve columns 1-6
  7. # 3.  Auto-indentation
  8. # 4.  Line-breaking with Ctl-Opt-J (a la emacs)
  9. # 5.  Subroutine indexing
  10. # 6.  Cmd-double-click subroutine and include-file lookup
  11. # 7.  Customizable comment and continuation characters
  12. #
  13. #------------------------------------------------------------------------------
  14. # Author: Tom Pollard <pollard@chem.columbia.edu>
  15. #
  16. # To Do:  work around grep failure for Unix-format tag files
  17. #
  18. #  8/97 - Updated for new system code.
  19. #  4/97 - Coloring bug fixed.
  20. #  1/96 - Fort::MarkFile no longer marks F90 "end subroutine ..." statements
  21. #         more F90 keywords (will they never cease?)
  22. #  1/96 - user-selectable comment and continuation characters
  23. #         complete F90 keyword set (Thomas Bewley <bewley@rayleigh.stanford.edu>) 
  24. #         F90 functions and comparison operators optionally colorized ( " " )
  25. #         more complete set of C preprocessor commands colorized
  26. #         fixed case-sensitivity problem in line-indent routines
  27. #  1/96 - minor Fort::DblClick bug fix
  28. # 12/95 - more complete keyword set for F90 and HPF (from Tom Scavo)
  29. # 12/95 - cpp keyword colorization (George Nurser <g.nurser@soc.soton.ac.uk>)
  30. #         cmd-dbl-click supports cpp #include now
  31. # 11/95 - added FortBreakLine
  32. #         fixed case-sensitivity bug
  33. # 10/95 - fixed Cmd-Dbl-Click handler to deal w/ new(?) tag file format and
  34. #            improve performance (fortFindSub)
  35. #  9/95 - fixed getFortPrev bug with numbered lines
  36. #       - shiftLeft/Right revert to normal behavior on ill-formatted lines
  37. #  8/95 - auto-indentation is finally speedy and robust
  38. #  5/95 - added Cmd-Dbl-Click handler
  39. #       - added auto-indentation
  40. # 12/94 - fixed funcExpr, Fort::MarkFile search expressions
  41. #       - changed comment character from 'C' to 'c' (should be case-insensitive!)
  42. #       - added 'include' keyword
  43. #       - added FortShiftRight and FortShiftLeft procs
  44. #------------------------------------------------------------------------------
  45.  
  46.  
  47. #================================================================================
  48. alpha::mode Fort 1.0 dummyFort \
  49.   {*.f *.inc *.INC *.fcm *.for *.FOR *.f9 *.f90 *.hpf } {electricTab} {
  50.     set unixMode(fortran) {Fort}
  51. }
  52.  
  53. proc dummyFort {} {}
  54.  
  55. newPref f sortedIsDefault    {0} Fort
  56. newPref f wordWrap        {0} Fort
  57. newPref v funcExpr    {^[^cC*!][ \t]*(subroutine|[ \ta-z*0-9]*function|entry).*$} Fort
  58. newPref f autoMark        {0} Fort
  59.  
  60. newPref    v continueChar    {$} Fort
  61. newPref    v commentChar    {c} Fort shadowFort
  62. newPref    f colorFuncs    {0} Fort shadowFort
  63. newPref    f colorOpers    {0} Fort shadowFort
  64.  
  65. newPref f indentComment    {0} Fort
  66. newPref v markTag        {{}} Fort
  67.  
  68. #=============================================================================
  69. # Colorize Fortran keywords
  70. #
  71. proc fortColorKeywords {{color blue} {comment red} {specialChars black}} {
  72.     global FortmodeVars
  73.  
  74.     set FortKeywords { 
  75.         allocatable allocate assign backspace block call character close common 
  76.         complex contains continue cycle data deallocate dimension do double else 
  77.         elseif end enddo endfile endif entry equivalence exit external extrinsic 
  78.         forall format function goto if implicit include inquire integer intent 
  79.         interface intrinsic logical module namelist nullify open optional 
  80.         parameter pause pointer precision print private program public pure read 
  81.         real recursive return rewind save sequence stop subroutine target then 
  82.         use where while write assignment case default elsewhere endfile go none 
  83.         operator procedure select to type
  84.     }
  85.     
  86.     if {$specialChars != "black"} {
  87.         regModeKeywords -e $FortmodeVars(commentChar) -c $comment -k $color Fort $FortKeywords  -i {=}  -i {*}  -i {/}  -i {+}  -i {-}  -i {,}  -i {(} -i {)} -I $specialChars
  88.     } else {
  89.         regModeKeywords -e $FortmodeVars(commentChar) -c $comment -k $color Fort $FortKeywords  
  90.     }
  91.     unset FortKeywords
  92.  
  93. #=============================================================================
  94. # Colorize selected C preprocessor keywords
  95. #
  96. proc fortColorCPP {{color green}} {
  97.     set CPPKeywords  {
  98.         #if #endif #include #else #define #undef #ifdef #ifndef
  99.     }
  100.     regModeKeywords -a  -k $color Fort $CPPKeywords
  101.     unset CPPKeywords
  102. }
  103.  
  104.  
  105. #=========================================================================
  106. # Colorize Fortran operators
  107. #
  108. proc fortColorOpers {{color green}} {
  109.     set FortOperators {
  110.         eq ne lt le gt ge not and or eqv neqv true false
  111.     }
  112.     regModeKeywords -a -k $color Fort $FortOperators
  113.     unset FortOperators
  114. }
  115.  
  116. #=========================================================================
  117. # Colorize Fortran function keywords
  118. #
  119. proc fortColorFuncs {{color green}} {
  120.     # Fortran bit functions
  121.     #
  122.     set BitKeywords {
  123.         bit_size btest iand ibclr ibits ibset ieor ior ishft ishftc mvbits not
  124.     }
  125.     regModeKeywords -a -k $color Fort $BitKeywords
  126.     unset BitKeywords
  127.     
  128.     # Fortran intrinsic functions
  129.     #
  130.     set IntrinsicKeywords {
  131.         abs acos aimag asin atan atan2 conjg cos cosh dble dim dprod exp ichar 
  132.         len lge lgt lle llt log log10 max min mod sign sin sinh sqrt tan tanh 
  133.         iabs dabs cabs dacos dint dnint dasin datan datan2 dcos ccos dcosh idim 
  134.         ddim dexp cexp ifix idint alog ddlog clog alog10 dlog10 max0 amax0 max1 
  135.         amax1 dmax1 min0 amin0 min1 amin1 dmin1 amod dmod idnint float sngl 
  136.         isign dsign dsin csin dsinh dsqrt csqrt dtan dtanh aint anint char cmplx 
  137.         index int nint achar adjustl adjustr all allocated any associated 
  138.         bit_size btest ceiling count cshift date_and_time digits dot_product 
  139.         eoshift epsilon exponent floor fraction huge iachar iand ibclr ibits 
  140.         ibset ieor ior ishft ishftc kind lbound len_trim logical matmul 
  141.         maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits 
  142.         nearest not pack precision present product radix random_number 
  143.         random_seed range repeat reshape rrspacing scale scan selected_int_kind 
  144.         selected_real_kind set_exponent shape size spacing spread sum 
  145.         system_clock tiny transfer transpose trim ubound unpack verify
  146.     }
  147.     regModeKeywords -a -k $color Fort $IntrinsicKeywords
  148.     unset IntrinsicKeywords    
  149. }
  150.  
  151. fortColorKeywords blue red magenta
  152. fortColorCPP green
  153. if {$FortmodeVars(colorFuncs)} {
  154.     fortColorFuncs green
  155. }
  156. if {$FortmodeVars(colorOpers)} {
  157.     fortColorOpers green
  158. }
  159. #=============================================================================
  160. # Special Fortran keybindings
  161. #
  162. Bind '\[' <c>  FortShiftLeft Fort
  163. Bind '\[' <co> FortShiftLeftSpace Fort
  164. Bind '\]' <c>  FortShiftRight Fort
  165. Bind '\]' <co> FortShiftRightSpace Fort
  166.  
  167. Bind 'j'  <zo> FortBreakLine Fort
  168.  
  169. #=============================================================================
  170. # Update colorization when Fortran mode variables are changed
  171. #
  172. proc shadowFort {name2} {
  173.     global HOME FortmodeVars
  174.     switch $name2 {
  175.         "colorFuncs"    {
  176.             if {$FortmodeVars(colorFuncs)} {
  177.                 fortColorFuncs green
  178.             } else {
  179.                 fortColorFuncs black
  180.             }
  181.          }
  182.         "colorOpers"    {
  183.             if {$FortmodeVars(colorOpers)} {
  184.                 fortColorOpers green
  185.             } else {
  186.                 fortColorOpers black
  187.             }
  188.          }
  189.         "commentChar" {    
  190.             fortColorKeywords blue red magenta
  191.         }
  192.         default {
  193.             return
  194.         }
  195.     }
  196. }
  197.  
  198. #=============================================================================
  199. #
  200. proc Fort::MarkFile {} {
  201.     global FortmodeVars
  202.     set tag [quote::Regfind $FortmodeVars(markTag)]
  203.     
  204.     set pat0 {^.*(subroutine|.*function|entry|program).*$}
  205.     set pat1 {^[^cC*!]([ \ta-z*0-9]*)(subroutine|.*function|entry|program)[ \t]+([a-z0-9_]+)}
  206.     set end [maxPos]
  207.     set pos 0
  208.     while {![catch {search -s -f 1 -r 1 -m 0 -i 1 $pat1 $pos} mtch]} {
  209.         regexp -nocase $pat1 [eval getText $mtch] allofit valtyp subtyp name
  210.         set start [lineStart [lindex $mtch 0]]
  211.         set next [nextLineStart $start]
  212.         set pos $next
  213.         if {! [regexp -nocase "end" $valtyp mtch]} {
  214.             set inds([lineStart $start]) $name
  215.         }
  216.         
  217.     }
  218.     
  219.     set pat2 "^(c+${tag})\[ \t\]*(\[^\n\r\]*\[^ \t\])\[^ \t\]*\$"
  220.     set pos 0
  221.     while {![catch {search -s -f 1 -r 1 -m 0 -i 1 $pat2 $pos} mtch]} {
  222.         regexp -nocase $pat2 [eval getText $mtch] allofit cc comment
  223.         regsub -all {[\/\(\)]} $comment {} comment
  224.         set start [lindex $mtch 0]
  225.         set end [nextLineStart $start]
  226.         set pos $end
  227.         set inds([lineStart $start]) $comment
  228.     }
  229.     
  230.     if {[info exists inds]} {
  231.         foreach f [lsort -integer [array names inds]] {
  232.             set next [nextLineStart $f ]
  233.             setNamedMark $inds($f) $f $f $f
  234.         }
  235.     }
  236. }
  237.  
  238. #================================================================================
  239. # Block shift left and right for Fortran mode (preserves cols 1-6)
  240. #================================================================================
  241.  
  242. proc FortShiftLeft {} {
  243.     global shiftChar
  244.     doFortShiftLeft "\t"
  245.     
  246. }
  247. proc FortShiftLeftSpace {} {
  248.     global shiftChar
  249.     doFortShiftLeft " "
  250. }
  251.  
  252. proc doFortShiftLeft {shiftChar} {
  253.     set start [lineStart [getPos]]
  254.     set end [nextLineStart [expr [selEnd] - 1]]
  255.     if {$start >= $end} {set end [nextLineStart $start]}
  256.     
  257.     set text [split [getText $start [expr $end - 1]] "\r"]
  258.     
  259.     set textout ""
  260.     
  261.     set pat {^([cC]|[ 0-9][ 0-9][ 0-9][ 0-9][ 0-9].| *[0-9]*\t)(.*)$}
  262.     foreach line $text {
  263.         if {[regexp $pat $line mtch pref body]} {
  264.             if {[string index $body 0] == $shiftChar} {
  265.                 lappend textout $pref[string range $body 1 end]
  266.             } else {
  267.                 lappend textout $line
  268.             }
  269.  
  270.         } elseif {[string index $line 0] == $shiftChar} {
  271.             lappend textout [string range $line 1 end]
  272.  
  273.         } else {
  274.             lappend textout $line
  275.         }
  276.     }
  277.  
  278.     set text [join $textout "\r"]    
  279.     replaceText $start [expr $end - 1] $text
  280.     select $start [expr 1 + $start + [string length $text]]
  281. }
  282.  
  283. proc FortShiftRight {} {
  284.     global shiftChar
  285.     doFortShiftRight "\t"
  286.     
  287. }
  288. proc FortShiftRightSpace {} {
  289.     global shiftChar
  290.     doFortShiftRight " "
  291. }
  292.  
  293. proc doFortShiftRight {shiftChar} {
  294.     set start [lineStart [getPos]]
  295.     set end [nextLineStart [expr [selEnd] - 1]]
  296.     if {$start >= $end} {set end [nextLineStart $start]}
  297.     
  298.     set text [split [getText $start [expr $end - 1]] "\r"]
  299.     
  300.     set textout ""
  301.     
  302.     set pat {^([cC]|[ 0-9][ 0-9][ 0-9][ 0-9][ 0-9].| *[0-9]*\t)(.*)$}
  303.     foreach line $text {
  304.         if {[regexp $pat $line mtch pref body]} {
  305.             lappend textout $pref$shiftChar$body
  306.         } else {
  307.             lappend textout $shiftChar$line
  308.         }
  309.     }
  310.     
  311.     set text [join $textout "\r"]    
  312.     replaceText $start [expr $end - 1] $text
  313.     select $start [expr 1 + $start + [string length $text]]
  314. }
  315.  
  316. proc FortBreakLine {} {
  317.     global FortmodeVars
  318.     set pos [getPos]
  319.     set line [getText [lineStart $pos] [expr [nextLineStart $pos]-1]]
  320.     if {[regexp {^[cC*!]} $line char]} {
  321.         insertText "\n$char "
  322.     } else {
  323.         set char $FortmodeVars(continueChar)
  324.         insertText "\n     $char"
  325.     }
  326.     FortindentLine
  327. }
  328.  
  329. #=============================================================================
  330. # Cmd-double-clicking opens include files, jumps to subroutine definitions,
  331. # and follows tags.
  332. #
  333. proc Fort::DblClick {from to} {
  334.     global tagFile
  335.     set pat1 {^[^cC*!][ \ta-z*0-9]*(subroutine|.*function|entry)[ \t]+}
  336.     set incPat {^[^cC*!][ \t]*include[ \t]*['"]([^'"]+)['"]}
  337.  
  338.     # First check whether an 'include' was clicked
  339.     set line [getText [lineStart $from] [expr [nextLineStart $to] - 1]]
  340.     if {[regexp -nocase $incPat $line allofit fname]} {
  341.         set path [absolutePath $fname]
  342.         if {[catch {file::openQuietly $path}]} { 
  343.             message "include file \'$fname\' not found in source folder"
  344.         }
  345.         return
  346.     }
  347.     
  348.     select $from $to
  349.     set text [getSelect]
  350.     
  351.     # First check current file for subroutine definition,...
  352.     if {![catch {fortFindSub $text} mtch]} { 
  353.         regexp -nocase $pat1 [eval getText $mtch] allofit subtyp name
  354.         pushPosition
  355.         display [lindex $mtch 0]
  356. #         eval select $mtch
  357.         message "press <Ctl .> to return to original cursor position"
  358.  
  359.     # ...then check tags file.
  360.     } else {
  361.         message "Searching tags file..."
  362.         set lines [grep "^$text'" $tagFile]
  363.         if {[regexp {'(.*)'} $lines dummy fname]} { 
  364.             pushPosition
  365.             if {[string match "*$fname*" [winNames -f]]} {
  366.                 bringToFront $fname
  367.             } else {
  368.                 edit $fname
  369.             }
  370.             set inds [fortFindSub $text]
  371. #             set inds [search -s -f 1 -r 1 -i 1 "$pat1$text" 0]
  372.             display [lindex $inds 0]
  373. #             eval select $inds
  374.             message "press <Ctl .> to return to original cursor position"
  375.         }
  376.     }
  377. }
  378.  
  379. # Speedy search for a Fortran subroutine.  Performance is dramatically 
  380. # improved by scanning for the name alone first, rather than running 
  381. # complicated regexp search on the entire file.
  382. #
  383. proc fortFindSub {name} {
  384.     set pat1 {^[^cC*!][ \ta-z*0-9]*(subroutine|.*function|entry)[ \t]+}
  385.     set pos 0
  386.     while {![catch {search -s -f 1 -r 0 -m 0 -i 1 $name $pos} mtch]} {
  387.         set beg [lineStart [lindex $mtch 0]]
  388.         set end [expr [nextLineStart [lindex $mtch 1]] -1]
  389.         set line [getText $beg $end]
  390.         if {[regexp  -nocase $pat1$name $line allofit subtyp name]} {
  391.             return $mtch 
  392.         } else {
  393.             set pos [lindex $mtch 1]
  394.         }
  395.     }
  396.     error "Subroutine \"$name\" not found"
  397. }
  398.  
  399. #=============================================================================
  400. # Fortan auto-indentation
  401. #
  402. # Logic:
  403. #    0.    Identify previous line
  404. #            a) ignore comments and continuation lines
  405. #            b) if current line is a CONTINUE that matches a DO, use the
  406. #                first corresponding DO as the previous line
  407. #
  408. #    1.    Find leading whitespace for previous line
  409. #
  410. #    2.    Increase whitespace if previous line starts a block, i.e.,
  411. #            a) DO loop
  412. #            b) IF ... THEN 
  413. #            c) ELSE
  414. #
  415. #    3.    Decrease whitespace if current line ends a block, i.e.,
  416. #            a) ELSE || ENDIF || END IF || ENDDO || END DO
  417. #            b) <linenum> CONTINUE matching a preceding DO
  418. #
  419. #        or if previous line ends a DO loop on an executable statement, i.e.,
  420. #            c) <linenum> (not CONTINUE) matching a preceding DO
  421. #
  422. ####################################################################################
  423. # Fortan auto-indentation
  424. #
  425. proc Fort::indentLine {} {    
  426.     set bol [lineStart [getPos]]
  427.     set eol [pos::math [nextLineStart $bol] - 1]
  428.     Fortindent $bol $eol
  429. }
  430.  
  431. proc Fort::indentRegion {} {    
  432.     Fortindent [getPos] [selEnd]
  433. }
  434.  
  435. ####################################################################################
  436. # Fortan auto-indentation of a specified region
  437. #
  438. proc Fortindent {pos0 pos1} {
  439.     global fortDooz fortPrevLine fortTop msg
  440.     global FortmodeVars
  441.  
  442.     set tag [quote::Regfind $FortmodeVars(markTag)]
  443.     set doComment $FortmodeVars(indentComment)
  444.  
  445.     # Define regexps
  446.     set subPat {^[^cC*!][ \ta-z*0-9]*(subroutine|.*function|entry|program)[ \t]+([a-z0-9_]+)}
  447.     set bolPat {^[^cC*!\n\r][ \t]*[^ \t\n\r][^\r\n]*$}
  448.     set mtPat {^[ \t]*$}
  449.     set tab "    "
  450.     
  451.     set contPat {^     ([^ \t\n\r])[^\r\n]*$}
  452.     set lnumPat {^([ \t]*)([0-9]*)([ \t]*)(.*)$}
  453.     set comPat "^(\[cC*!\]+(${tag})?)(\[ \t\]*)(.*)\$"
  454.     set doPat {^[^cC*!\n\r][ \t]*do[ \t]+}
  455.     set tailPat {[^\r\n]*$}
  456.     
  457.     set bobPat {^(if[^\n\r]*then|else|do)}
  458.     set eobPat {^(end[ \t]*if|end[ \t]*do|else)}
  459.     set enddoPat {^(end[ \t]*do|continue)}
  460.     
  461. #     set fortTop [fortSubTop $pos0]
  462.     set fortTop -1
  463.     
  464.     catch {unset fortDooz}
  465.     set fortPrevLine ""
  466.     
  467.     # Loop over region line by line
  468.     set from [lindex [posToRowCol $pos0] 0]
  469.     set to [lindex [posToRowCol $pos1] 0]
  470.     
  471.     while {$from <= $to} {        
  472.         set msg "Indenting line $from"
  473.         message $msg
  474.         set bol [lineStart [rowColToPos $from 0]]
  475.         set eol [expr [nextLineStart $bol] - 1]
  476.         set thisLine [getText $bol $eol]
  477.         goto $bol
  478.         
  479.         # Check whether we're entering a new routine
  480.         #
  481.         if {[regexp $subPat $thisLine allofit subType subName]} {
  482.             # alertnote "entering subr: \/$subName\/"
  483.             set fortTop $bol
  484.             catch {unset fortDooz}
  485.         } 
  486.         
  487.         # Is the current line a comment line...
  488.         #        
  489.         if {[regexp $comPat $thisLine allofit cc tag pre body]} {
  490.             if {$FortmodeVars(indentComment) > 0} {
  491.                 set body [string trimright $body]
  492.                 # alertnote "comment line: \/$pre\/$body\/"
  493.                 set lwhite "$cc     "
  494.                 
  495.                 replaceText $bol $eol $lwhite$body
  496.             }
  497.             
  498.         # ... or a line of code (possibly empty)?
  499.         #    
  500.         } elseif {[regexp $lnumPat $thisLine allofit pre lnum post body]} {
  501.             set body [string trimright $body]
  502.             # alertnote "line: \/$pre\/$lnum\/$post\/$body\/"
  503.             
  504.             # is it a continuation line?
  505.             #
  506.             if {(![regexp "\t" $pre]) && ([string length $pre] == 5)} {
  507.                 set cont [string index $lnum$post$body 0]
  508.                 set body [string trimleft [string range $lnum$post$body 1 end]]
  509.             } else {
  510.                 set cont {}
  511.             }
  512.             # alertnote "cont: \/$cont\/"
  513.             
  514.             # get whitespace for preceding line
  515.             set enddo [getFortPrev $bol $lnum]
  516.             set lwhite [getFortLwhite $bol]
  517.             
  518.             # if this line ends a block, decrease the whitespace
  519.             if {[regexp $eobPat $body] || ($enddo && [regexp -nocase $enddoPat $body])} {
  520.                 set lwlen [expr [string length $lwhite] - 4]
  521.                 set lwhite [string range $lwhite 0 $lwlen]
  522.             } 
  523.             
  524.             if {[string length $lnum]} {
  525.                 if {[string index $lwhite 0] != $tab} {
  526.                     set lwhite [string range $lwhite [expr [string length $lnum] +1] end]
  527.                 }
  528.                 set lnum " $lnum"
  529.             }
  530.             # alertnote "lwhite: \/$lwhite\/ len: [string length $lwhite]"
  531.             # message "$msg : replacing text      "
  532.             
  533.             if {[string length $cont]} {
  534.                 replaceText $bol $eol "     $cont$lwhite$body"    
  535.             } else {
  536.                 replaceText $bol $eol $lnum$lwhite$body
  537.                 if {[string length $body] > 0} {
  538.                     set fortPrevLine $lnum$lwhite$body
  539.                 }
  540.             }
  541.         } else {
  542.             # message "$msg : Couldn't parse line         "
  543.         }
  544.         
  545.         # message "$msg : Done                "
  546.         incr from
  547.     }
  548. }
  549.  
  550. proc getFortLwhite {bol} {
  551.     global fortDooz fortPrevLine fortTop msg
  552.     # Define regexps
  553.     set tab "    "
  554.     set lnumPat {^([ \t]*)([0-9]*)([ \t]*)(.*)$}
  555.     set doPat {^[^cC*!\n\r][ \t]*do[ \t]+}
  556.     set bobPat {^(if[^\n\r]*then|else|do)}
  557.     set enddoPat {^(end[ \t]*do|continue)}
  558.     
  559.     if {[regexp $lnumPat $fortPrevLine allofit pre0 lnum0 post0 body0]} {
  560.         # alertnote "prevLine: \/$pre0\/$lnum0\/$post0\/$body0\/"
  561.         
  562.         if {[string length $lnum0]} {
  563.             if {[string index $post0 0] == $tab} {
  564.                 set lwhite $post0
  565.             } else {
  566.                 regsub -all {[0-9]} $pre0$lnum0$post0 { } lwhite
  567.             }
  568.         } else {
  569.             set lwhite $pre0
  570.         }
  571.         # alertnote "lwhite: \/$lwhite\/ len: [string length $lwhite]"
  572.         # message "$msg : got lwhite (initial)"
  573.         
  574.         # if there's a line number and it's not a CONTINUE or ENDDO, 
  575.         # then check for a matching DO statement and adjust 
  576.         # indentation if found
  577.         #
  578.         if {[string length $lnum0] && ![regexp -nocase $enddoPat $body0]} {
  579.             if {[getFortPrev [lineStart [expr $bol - 1]] $lnum0]} {
  580.                 set lwlen [expr [string length $lwhite] - 4]
  581.                 set lwhite [string range $lwhite 0 $lwlen]
  582.  
  583.             }
  584.         }
  585.         
  586.         # If the preceeding line begins a block (IF-THEN, DO, or ELSE),
  587.         # then increase the whitespace
  588.         #    
  589.         if {[regexp -nocase $bobPat $body0]} {
  590.             set lwhite "$lwhite   "
  591.             
  592.             if {[regexp -nocase "$doPat\(\[0-9\]+\)" $body0 mtch donum]} {
  593.                 set eol [expr [nextLineStart $bol] - 1]
  594.                 set fortDooz($donum) [getText $bol $eol]
  595.             }
  596.         }
  597.         # message "$msg : got lwhite (final)  "
  598.     }
  599.     return "$lwhite"
  600. }
  601.  
  602. proc getFortPrev {bol lnum} {        
  603.     global fortDooz fortPrevLine fortTop msg
  604.     # Define regexps
  605.     set doPat {^[^cC*!\n\r][ \t]*do[ \t]+}
  606.     set bolPat {^[^cC*!\n\r][ \t]*[^ \t\n\r][^\r\n]*$}
  607.     set contPat {^     ([^ \t\n\r])[^\r\n]*$}
  608.  
  609.     # if there's a line number, check for a matching DO statement ...
  610.     if {[string length $lnum]} {
  611.         if {[lsearch [array names fortDooz] $lnum] >= 0} {
  612.             set fortPrevLine $fortDooz($lnum)
  613.             return 1
  614.         } else {
  615.             if {$fortTop < 0} {
  616.                 set fortTop [fortSubTop $bol]
  617.             }
  618.             if {![catch {search -s -f 0 -r 1 -i 1 -l $fortTop $doPat$lnum [expr $bol -1]} dolst]} {
  619.                 set fortPrevLine [eval getText $dolst]
  620.                 set fortDooz($lnum) $fortPrevLine
  621.                 # alertnote "doLine0: \/$fortPrevLine\/"
  622.                 return 1
  623.             }
  624.         }
  625.     }
  626.         
  627.     # ... otherwise find the first preceding non-comment, non-continuation line
  628.     if {[string length $fortPrevLine] == 0} {
  629.         if {[catch {
  630.             set lst [search -s -f 0 -r 1 -i 1 -s $bolPat [expr $bol-1]]
  631.             set fortPrevLine [eval getText $lst]
  632.             while {[regexp -nocase $contPat $fortPrevLine]} {
  633.                 set lst [search -s -f 0 -r 1 -i 1 $bolPat [expr [lindex $lst 0] - 1]]
  634.                 set fortPrevLine [eval getText $lst]
  635.             }
  636.         }]} {
  637.             # if search fails, we're at the top of a file, so reset indentation
  638.             set fortPrevLine "      continue"
  639.         }
  640.     }
  641.     
  642.     # alertnote "prevLine: \/$fortPrevLine\/"
  643.     # message "$msg : got prevLine"
  644.     return 0
  645. }
  646.  
  647. # Find the beginning of the current subroutine
  648. #
  649. proc fortSubTop {{pos 0}} {
  650.     if {$pos == 0} {
  651.         set pos [lineStart [getPos]]
  652.     }
  653.     set subPat {^[^cC*!][ \ta-z*0-9]*(subroutine|.*function|entry|program)[ \t]+([a-z0-9_]+)}
  654.     
  655.     if {![catch {search -s -f 0 -r 1 -m 0 -i 1 $subPat $pos} sublst]} {
  656.         # set subLine [eval getText $sublst]
  657.         # alertnote "subLine: \/$subLine\/"
  658.         return [lindex $sublst 0]
  659.     } else {
  660.         return 0
  661.     } 
  662. }
  663.  
  664.  
  665.  
  666.